This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
Let start from the beginning - - ~Laura Nimvelugenoden 21.Jan.04 12:35 AM a Web browser Domino Designer All ReleasesAll Platforms
Data is of the following format:
Bytes 1-3 - "Form Name" (Form to be used in the document)
Bytes 5-55 - "Notes User Name" Who the document will be sent to (repeats if the person has more than one record of detail)
Bytes 56 for 114 bytes - "Detail information"
The e-mail that gets created could have from 1 to 19 pieces of 'Detail' which is send in the document to the user for them to work-on
Each user group is terminated by '$$$$$' to signify the end of the user block of information...
ie:
FM1 John Smith/Boston..... 1234RDG - Fix System...
FM1 John Smith/Boston..... 1489JHG - Correct Boot pr..
$$$$$
FM2 Mary Jones/Boston..... 6672GTS - Install software.
$$$$$
John Smith will receive a single document containing 2 detail items (Fix and Correct)
and
Mary Jones will receive a single document containing 1 detail item (Install)
========================
The code works fine... The documents get created... But the form is not getting stored in the document.
Additionally, the attempt to execute the statement 'Call doc.Send(True,"John Smith/Boston")' FAILS!
The error is 'Invalid - Non-existant document ( event thought the previous statement does save the document! (( I plan later not to save the document - only send))
The core problem is:
How do I get the document sent with the Form stored in the document to a user?? This is what is failing - all of the other code works fine!
Note: that in the example of code I submitted that I am hard-coding the "SendTo" for debugging purposes... When I extract name from bytes 5-55 - the "SendTo" field is getting assigned the proper value...
I hope that this helps... The problem is NOT the code working properly in creating the documents... It does not "Send" it - with the form stored in the document... That is the core issue.